home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AGA Toolkit '97
/
The AGA Toolkit '97.iso
/
text
/
misc
/
port
/
string
/
strcpy.s
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-09-07
|
170 b
|
14 lines
XDEF StrCpy
; Copies a string.
; Args:
; A0 = Pointer to the destination string.
; A1 = Pointer to the source string.
StrCpy:
move.b (a1)+,(a0)+
bne.b StrCpy
rts